ComponentOne Data Source for Entity Framework
C1.Data.Entities Namespace / EntityClientScope Class / GetItems Method / GetItems<T>(String) Method
The type of entities in the entitySetName.
The name of the entity set to load entities from.

In This Topic
    GetItems<T>(String) Method
    In This Topic
    Gets a client view of entities from the specified entitySetName.
    Syntax
    'Declaration
     
    
    Public Overloads Function GetItems(Of T)( _
       ByVal entitySetName As System.String _
    ) As ClientView(Of T)
    public ClientView<T> GetItems<T>( 
       System.string entitySetName
    )

    Parameters

    entitySetName
    The name of the entity set to load entities from.

    Type Parameters

    T
    The type of entities in the entitySetName.

    Return Value

    A client view of entities from the specified entitySetName.
    See Also